home *** CD-ROM | disk | FTP | other *** search
/ Klondike Gold - An Interactive History / Klondike Gold - An Interactive History.iso / end.dir / 00020_Script_20 < prev    next >
Text File  |  1996-01-03  |  386b  |  23 lines

  1. On startmovie
  2.   
  3.   set the keyDownScript to "checkKeyFinal"
  4.   
  5.   howloud
  6.   repeat with x = 33 down to 28
  7.     set the visible of sprite x = false
  8.   end repeat
  9. end
  10.  
  11.  
  12. on checkKeyFinal
  13.   if the commandDown and (((the key = ".") or (the key = "q"))¼
  14.  and (the exitLock = TRUE)) then
  15.     go frame "macro"
  16.   end if
  17. end -- checkKeyFinal
  18.  
  19.  
  20. on stopMovie
  21.   mainStopMovee
  22. end
  23.